home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part2 / cat1 / rowcomp.1 < prev    next >
Text File  |  1999-09-16  |  991b  |  67 lines

  1.  
  2.  
  3.  
  4. rowcomp(1)                     Scilab Function                     rowcomp(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   rowcomp - row compression, range
  13.  
  14. CALLING SEQUENCE
  15.   [W,rk]=rowcomp(A, flag, tol)
  16.  
  17. PARAMETERS
  18.   A         : real or complex matrix
  19.   flag      : character string
  20.   tol       : real number
  21.   W         : square non-singular matrix (change of basis)
  22.   rk        : integer (rank of A)
  23.  
  24. DESCRIPTION
  25.   Row compression of A. Ac = W*A is a row compressed matrix: i.e. Ac=[Af;0]
  26.   with Af full row rank.
  27.   flag and tol are optional parameters: flag='qr' or 'svd' (default 'svd').
  28.   tol is a tolerance parameter (of order %eps as default value).
  29.   The rk first columns of W' span the range of A.
  30.   The rk first (top) rows of W span the row range of A.
  31.  
  32. Remark
  33.   A non zero vector x belongs to range(A) iff W*x is row compressed in accor-
  34.   dance with Ac i.e the norm of its last components is small w.r.t its first
  35.   components.
  36.  
  37. SEE ALSO
  38.   colcomp, fullrf, fullrfk
  39.  
  40. AUTHOR
  41.   F. D.
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.